home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 June: Reference Library / Dev.CD Jun 00 RL Disk 1.toast / pc / what's new / development kits / hardware / mac os usb ddk 1.4.1 / usb software locator kit / sampledriverinstallerexample / hex2c.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-25  |  260 b   |  11 lines

  1. #ifndef __HEX2C__
  2. #define __HEX2C__
  3. #define MAX_INTEL_HEX_RECORD_LENGTH 16
  4. typedef struct _INTEL_HEX_RECORD
  5. {
  6.    UInt32      Length;
  7.    UInt32     Address;
  8.    UInt32      Type;
  9.    UInt8      Data[MAX_INTEL_HEX_RECORD_LENGTH];
  10. } INTEL_HEX_RECORD, *PINTEL_HEX_RECORD;
  11. #endif